In an order-enforcing wrapper for an "external" recursive lock,
we aim to increment/decrement a recurse count and only update the
lock ordering on zero counts.
Unfortunately we incrementing/decrementing the pointer to the
recurse count, rather than the count itself.
Signed-off-by: Andres Lagar-Cavilla <andres@lagarcavilla.org>
Acked-by: Tim Deegan <tim@xen.org>
Committed-by: Tim Deegan <tim@xen.org>
{
if ( recurse_count )
{
- if ( *recurse_count++ == 0 )
+ if ( (*recurse_count)++ == 0 )
{
*unlock_level = __get_lock_level();
}
if ( recurse_count )
{
BUG_ON(*recurse_count == 0);
- if ( *recurse_count-- == 1 )
+ if ( (*recurse_count)-- == 1 )
{
__set_lock_level(unlock_level);
}